home *** CD-ROM | disk | FTP | other *** search
/ PC Home 138 / PC Home issue 138.iso / Software / Essentials / Netscape / nim.xpi / bin / chrome / aim.jar / content / aim / migration.xul < prev    next >
Encoding:
Extensible Markup Language  |  2002-10-13  |  6.9 KB  |  215 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://communicator/skin/"?>
  4. <?xml-stylesheet href="chrome://aim/skin/wizards.css"?>
  5.  
  6. <!-- temp overlays -->
  7. <?xul-overlay href="chrome://communicator/content/profile/newActivationOverlay.xul"?>
  8.  
  9.  
  10.  
  11.  
  12. <!DOCTYPE window SYSTEM "chrome://aim/locale/migration.dtd">
  13.  
  14. <wizard windowtype="Aim:StartupWizard" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  15.         id="migWiz" orient="vertical"
  16.         onwizardfinish="finishWizard()" onwizardcancel="return cancelWizard()" title="&window.title.label;" flex="1" 
  17.         width="500" 
  18.         height="470"
  19.         >
  20.  
  21.   <!-- NIM JS Files -->
  22.   <script type="application/x-javascript" src="chrome://aim/content/Aim.js"/>
  23.   <script type="application/x-javascript" src="chrome://aim/content/AimSession.js"/>
  24.   <script type="application/x-javaScript" src="chrome://aim/content/aimHelpers.js"/>
  25.   <!-- Wizard JS File -->
  26.   <script type="application/x-javascript" src="chrome://aim/content/migration.js"/>
  27.  
  28.   <stringbundleset id="stringbundleset">
  29.     <stringbundle id="bundle_aim" src="chrome://aim/locale/aim.properties"/>
  30.   </stringbundleset>
  31.  
  32.   <!--
  33.     Page 1 can only go to page 2, 3, 4 or 5.  (This page chooses what option you want to take)
  34.     Page 2 can only finish.                   (This page is for using your activated screen name)
  35.     Page 3 can only finish.                   (This page is for picking an existing screen name, when none are found on your computer)
  36.     Page 4 can only finish.                   (This page is for picking an existing screen name, when AIM names ARE found on your computer)
  37.     Page 5 can only go to page 6.             (This page explains how to choose a new screen name in the next page)
  38.     Page 6 can only finish.                   (This page pops open the AOL web page for picking a new name, and lets you input it)
  39.   -->
  40.  
  41.  
  42.   <!--**************
  43.       *  Page One  *
  44.       **************-->
  45.       
  46.   <wizardpage id="p1" pageid="p1" label="&window.title.label;" description="&page1.description;" onpageshow="page1onLoad()" 
  47.               onpageadvanced="return page1Advanced();" finish="false" next="p2">
  48.     <description>&page1.intro.text;</description>
  49.  
  50.     <spacer flex="1"/>
  51.  
  52.     <vbox flex="1">
  53.       <radiogroup id="wizchoices">
  54.         <radio id="netcenter" label=""                     oncommand="setUseActivatedName();"/>
  55.         <radio id="migration" label="&page1.option2.text;" oncommand="setUseMyScreenName();" />
  56.         <radio id="setupname" label="&page1.option3.text;" oncommand="setUseNewScreenName();"/>
  57.       </radiogroup>
  58.     </vbox>  
  59.  
  60.     <spacer flex="1"/>
  61.  
  62.     <label value="&page1.next.text;"/> 
  63.   </wizardpage>
  64.  
  65.   <!--**************
  66.       *  Page Two  *
  67.       **************-->
  68.  
  69.   <wizardpage id="p2" pageid="p2" label="&window.title.label;" description="&page2.description;" onpageshow="page2onLoad()" finish="true">
  70.     <description>&page2.intro.text;</description>
  71.  
  72.     <spacer flex="1"/>
  73.  
  74.     <label value="&page2.finish.text;"/>
  75.   </wizardpage>
  76.   
  77.   <!--**************
  78.       * Page Three *
  79.       **************-->
  80.   
  81.   <wizardpage id="p3" pageid="p3" label="&window.title.label;" description="&page3.description;" onpageshow="page3onLoad()" finish="true">
  82.     <description>&page3.intro.text;</description>
  83.  
  84.     <spacer flex="1"/>
  85.  
  86.     <hbox>
  87.       <vbox flex="1">
  88.         <label control="inputscreenname" value="&page3.screenname.label;" />
  89.         <textbox id="p3inputscreenname"/>
  90.       </vbox>
  91.  
  92.       <spacer flex="1"/>
  93.  
  94.       <vbox flex="1">
  95.         <label control="inputpassword" value="&page3.password.label;" />
  96.         <textbox id="p3inputpassword" type="password"/>
  97.       </vbox>
  98.     </hbox>
  99.  
  100.     <spacer flex="1"/>
  101.  
  102.     <description>&page3.finish.text;</description>
  103.   </wizardpage>
  104.   
  105.   <!--**************
  106.       * Page Four  *
  107.       **************-->
  108.   
  109.   <wizardpage id="p4" pageid="p4" label="&window.title.label;" description="&page4.description;" onpageshow="page4onLoad()" finish="true">
  110.     <description>&page4.intro.text;</description> 
  111.  
  112.     <spacer flex="1"/>
  113.  
  114.     <hbox>
  115.       <vbox flex="1">
  116.         <label value="&page4.screenname.label;" control="inputscreenname"/>
  117.         <menulist id="p4inputscreenname" editable="true"/>
  118.       </vbox>
  119.   
  120.       <spacer flex="1"/>
  121.   
  122.       <vbox flex="1">
  123.         <label value="&page4.password.label;" control="inputpassword"/>
  124.         <textbox id="p4inputpassword" type="password"/>
  125.       </vbox>
  126.     </hbox>
  127.  
  128.     <checkbox id="p4migrateScreenNameCheck" label="&page4.dontmigrate.label;"/>
  129.  
  130.     <spacer flex="1"/>
  131.  
  132.     <description>&page4.finish.text;</description>
  133.   </wizardpage>
  134.   
  135.   <!--**************
  136.       *  Page Five  *
  137.       **************-->
  138.       
  139.   <wizardpage id="p5" pageid="p5" label="&window.title.label;" description="&page5.description;" onpageshow="page5onLoad()" finish="false" next="p6">
  140.     <description>&page5.intro.text;</description>
  141.  
  142.     <spacer flex="1"/>
  143.  
  144.     <description>&page5.finish.text;</description>
  145.   </wizardpage>
  146.   
  147.   <!--**************
  148.       *  Page Six  *
  149.       **************-->
  150.   
  151.   <wizardpage id="p6" pageid="p6" label="&window.title.label;" description="&page6.description;" onpageshow="page6onLoad()" finish="true">
  152.     <description>&page6.intro.text;</description>
  153.  
  154.     <spacer flex="1"/>
  155.  
  156.     <hbox>
  157.       <vbox flex="1">
  158.         <label control="inputscreenname" value="&page6.screenname.label;"/> 
  159.         <textbox id="p6inputscreenname"/>
  160.       </vbox>
  161.   
  162.       <spacer flex="1"/>
  163.   
  164.       <vbox flex="1">
  165.         <label control="inputpassword" value="&page6.password.label;"/> 
  166.         <textbox id="p6inputpassword" type="password"/>
  167.       </vbox>
  168.     </hbox>
  169.  
  170.     <spacer flex="1"/>
  171.  
  172.     <description>&page6.finish.text;</description> 
  173.   </wizardpage>
  174.  
  175.    <!--**************
  176.       *  Page Done  *
  177.       **************-->
  178.  
  179.   <wizardpage id="pdone" pageid="pdone" label="&window.title.label;" description="&pdone.description;" onpageshow="pdoneonLoad()" finish="true">
  180.     <description>&pdone.intro.text;</description>
  181.  
  182.     <separator/>
  183.  
  184.        <hbox>
  185.          <label class="label" value="&pdone.bullet;"/>
  186.          <label class="label" id="ImScreenName" value="&pdone.screennamedesc;"/>
  187.          <description flex="1" id="newScreenName" />
  188.        </hbox>
  189.  
  190.  
  191.     <spacer flex="1"/>
  192.  
  193.     <label value="&pdone.finish.text;"/>
  194.   </wizardpage>
  195.  
  196.  
  197.  <!-- overlay mail migration panels -->
  198.   <wizardpage id="ispPage1"/>
  199.   <wizardpage id="ispPage2"/>
  200.   <wizardpage id="ispPage3"/>
  201.   <wizardpage id="ispPage4"/>
  202.   <wizardpage id="ispPage5"/> 
  203.   <wizardpage id="ispPage6"/>
  204.   <wizardpage id="ispPage7"/>
  205.   <wizardpage id="ispPage8"/>
  206.   <wizardpage id="ispPage9"/>
  207.   <wizardpage id="ispPage10"/>
  208.   <wizardpage id="ispPage12"/>
  209.   <wizardpage id="ispPage13"/>
  210.   <wizardpage id="ispPage14"/>
  211.   <wizardpage id="ispPage15"/>
  212.   <wizardpage id="ispPage16"/>
  213.  
  214. </wizard>
  215.